home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980424-19980901 / 000314_news@newsmaster….columbia.edu _Wed Jul 29 19:17:30 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA16712
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 29 Jul 1998 19:17:30 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA18998
  7.     for kermit.misc@watsun; Wed, 29 Jul 1998 19:17:29 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Serial ports, cables, and terminals
  12. Date: 29 Jul 1998 23:17:28 GMT
  13. Organization: Columbia University
  14. Lines: 63
  15. Message-ID: <6poai8$ji7$1@apakabar.cc.columbia.edu>
  16. References: <6pn0jk$7s0$1@nnrp1.dejanews.com> <6pn8lf$1p7$1@apakabar.cc.columbia.edu> <6po2hq$kip$1@nnrp1.dejanews.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9023
  19.  
  20. In article <6po2hq$kip$1@nnrp1.dejanews.com>,  <yahzell@my-dejanews.com> wrote:
  21. : In article <6pn8lf$1p7$1@apakabar.cc.columbia.edu>,
  22. :   fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  23. : > In article <6pn0jk$7s0$1@nnrp1.dejanews.com>,  <martinja@exis.net> wrote:
  24. : > : I have been trying to set up a terminal for my dad. He is using an old
  25. : > : 386 with a bootdisk running C-Kermit for MSDOS.
  26. : > :
  27. : > You mean MS-DOS Kermit?
  28. Yes.
  29.  
  30. : > Has Kermit been started on the 386?  Has it been told to SET PORT x, where
  31. : > x is the appropriate COM port number?
  32. : It has been started. I have done set port 1.
  33. :
  34. And Port 1 is the right port?
  35.  
  36. : > : When I type "show modem" in C-Kermit this is the output:
  37. : > :         Modem is not ready: DSR is off
  38. : > :         no carrier detect: CD is off (set carrier is off)
  39. : > :         no Clear to send: CTS is off
  40. :
  41. So when you type "show modem" in MS-DOS Kermit (not C-Kermit), it does not
  42. see any modem signals coming in.  This means:
  43.  
  44.  1. Port 1 is not the right port.
  45.  
  46.  2. Port 1 is the right port, but the Linux port is not sending any modem
  47.     signals, which is a Linux configuration problem.  I would expect to see
  48.     at least CTS and probably also DSR on a port waiting for login.
  49.  
  50.  3. The Linux port is asserting the modem signals, but the cable isn't
  51.     conveying them.
  52.  
  53.  4. The cable is bringing the modem signals to the PC port, but the port
  54.     is broken.
  55.  
  56.  5. The port is not broken, but the two serial ports are set to different
  57.     speeds.
  58.  
  59. It's easy to pin down problems like this if you have a breakout box, but
  60. without one, it's a matter of trial and error, and/or swapping things.
  61.  
  62. For example: Can the PC with MS-DOS Kermit successfully communication with
  63. anything other than the Linux system in question?  If so, then you can
  64. rule out 1, 3, and 4.
  65.  
  66. A couple more things to try:
  67.  
  68.  1. Since you're not seeing CTS from the Linux system, tell MS-DOS Kermit
  69.     to "set flow none" so it won't be blocked on CTS-Off.
  70.  
  71.  2. Because CD is off, tell MS-DOS Kermit to "set carrier off" so it won't
  72.     require CD.
  73.  
  74. Now you should be able to give a CONNECT command and get the terminal
  75. emulation screen.  Press the Enter key.  Do you see a prompt (or anything
  76. else legible)?  If not, use Alt-B to send a Break signal.  Repeat this
  77. process up to 15 times.  The Break tells the Linux system to change its
  78. speed and issue a new login: prompt.
  79.  
  80. - Frank